home *** CD-ROM | disk | FTP | other *** search
/ Lip Tissue / Lip Tissue - Disc 1.iso / pc / _b_v_ebb.v11 / CONFIG / ras_1_config-button hundle.ls < prev    next >
Encoding:
Text File  |  1997-03-02  |  1.3 KB  |  49 lines

  1. on mouseUp
  2.   global xautomode, xmode, xautospeed, xfirst, xmiddle, xslow, xvolume
  3.   if xmode = 0 then
  4.     set xmode to 1
  5.     if xautospeed = xslow then
  6.       set the hilite of cast "slow" to 1
  7.     else
  8.       if xautospeed = xmiddle then
  9.         set the hilite of cast "middle" to 1
  10.       else
  11.         if xautospeed = xfirst then
  12.           set the hilite of cast "first" to 1
  13.         end if
  14.       end if
  15.     end if
  16.     if xvolume = 0 then
  17.       set the hilite of cast "VOL-0" to 1
  18.     else
  19.       if xvolume = 1 then
  20.         set the hilite of cast "VOL-1" to 1
  21.       else
  22.         if xvolume = 2 then
  23.           set the hilite of cast "VOL-2" to 1
  24.         else
  25.           if xvolume = 3 then
  26.             set the hilite of cast "VOL-3" to 1
  27.           else
  28.             if xvolume = 4 then
  29.               set the hilite of cast "VOL-4" to 1
  30.             else
  31.               if xvolume = 5 then
  32.                 set the hilite of cast "VOL-5" to 1
  33.               else
  34.                 if xvolume = 6 then
  35.                   set the hilite of cast "VOL-6" to 1
  36.                 else
  37.                   if xvolume = 7 then
  38.                     set the hilite of cast "VOL-7" to 1
  39.                   end if
  40.                 end if
  41.               end if
  42.             end if
  43.           end if
  44.         end if
  45.       end if
  46.     end if
  47.   end if
  48. end
  49.